home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / implicit_cast.e < prev    next >
Text File  |  2000-03-25  |  6KB  |  272 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class IMPLICIT_CAST
  17.    --
  18.    -- To memorize an implicit legal cast from one type to another. 
  19.    -- This invisible expression is used for all kinds of implicit 
  20.    -- conversions :
  21.    --   from INTEGER to REAL
  22.    --   from INTEGER to DOUBLE,
  23.    --   from REAL to DOUBLE,
  24.    --   from INTEGER to INTEGER_REF,
  25.    --   ...
  26.    --   from some expanded type to some comaptible reference type
  27.    --   or conversely.
  28.    --
  29.  
  30. inherit EXPRESSION;
  31.  
  32. creation {CONVERSION_HANDLER} make
  33.  
  34. feature {NONE}
  35.  
  36.    expression : EXPRESSION;
  37.          -- The wrapped `expression' with it's `source_type'.
  38.  
  39.    source_type, destination_type: TYPE;
  40.  
  41.    make(e: like expression; dt: like destination_type) is
  42.       require
  43.          e.result_type.run_time_mark /= dt.run_time_mark
  44.       do
  45.          expression := e;
  46.          source_type := e.result_type;
  47.          destination_type := dt;
  48.          conversion_handler.notify(expression,source_type,destination_type);
  49.       ensure
  50.          expression = e;
  51.          source_type = e.result_type;
  52.          destination_type = dt
  53.       end;
  54.  
  55. feature
  56.  
  57.    is_manifest_array: BOOLEAN is false;
  58.  
  59.    is_manifest_string: BOOLEAN is false;
  60.  
  61.    result_type: TYPE is
  62.       do
  63.          Result := destination_type;
  64.       end;
  65.  
  66.    is_void: BOOLEAN is
  67.       do 
  68.          Result := expression.is_void;
  69.       end;
  70.  
  71.    static_result_base_class: BASE_CLASS is
  72.       do
  73.          Result := result_type.base_class;
  74.       end;
  75.  
  76.    is_writable: BOOLEAN is
  77.       do
  78.          Result := expression.is_writable;
  79.       end;
  80.  
  81.    is_result: BOOLEAN is
  82.       do
  83.          Result := expression.is_result;
  84.       end;
  85.  
  86.    is_current: BOOLEAN is
  87.       do
  88.          Result := expression.is_current;
  89.       end;
  90.  
  91.    assertion_check(tag: CHARACTER) is
  92.       do
  93.          expression.assertion_check(tag);
  94.       end;
  95.  
  96.    is_static: BOOLEAN is
  97.       do
  98.          Result := expression.is_static;
  99.       end;
  100.  
  101.    static_value: INTEGER is
  102.       do
  103.          Result := expression.static_value;
  104.       end;
  105.  
  106.    is_pre_computable: BOOLEAN is
  107.       do
  108.          Result := expression.is_pre_computable;
  109.       end;
  110.  
  111.    isa_dca_inline_argument: INTEGER is
  112.       do
  113.          Result := expression.isa_dca_inline_argument;
  114.       end;
  115.  
  116.    dca_inline_argument(formal_arg_type: TYPE) is
  117.       do
  118.          expression.dca_inline_argument(formal_arg_type);
  119.       end;
  120.  
  121.    compile_to_c is
  122.       do
  123.          c_wrapper_opening;
  124.          expression.compile_to_c;
  125.          c_wrapper_closing;
  126.       end;
  127.  
  128.    mapping_c_target(target_type: TYPE) is
  129.       do
  130.          c_wrapper_opening;
  131.          expression.mapping_c_target(source_type);
  132.          c_wrapper_closing;
  133.       end;
  134.  
  135.    mapping_c_arg(formal_arg_type: TYPE) is
  136.       do
  137.          c_wrapper_opening;
  138.          expression.mapping_c_arg(source_type);
  139.          c_wrapper_closing;
  140.       end;
  141.  
  142.    afd_check is
  143.       do
  144.          expression.afd_check;
  145.       end;
  146.  
  147.    collect_c_tmp is
  148.       do
  149.           expression.collect_c_tmp;
  150.       end;
  151.  
  152.    c_declare_for_old is
  153.       do
  154.          expression.c_declare_for_old;
  155.       end;
  156.  
  157.    compile_to_c_old is
  158.       do
  159.          expression.compile_to_c_old;
  160.       end;
  161.  
  162.    compile_to_jvm_old is
  163.       do
  164.          expression.compile_to_jvm_old;
  165.       end;
  166.  
  167.    compile_to_jvm is
  168.       local
  169.          space: INTEGER;
  170.       do
  171.          expression.compile_to_jvm;
  172.          space := source_type.jvm_convert_to(destination_type);
  173.       end;
  174.  
  175.    compile_target_to_jvm is
  176.       local
  177.          space: INTEGER;
  178.       do
  179.          expression.compile_target_to_jvm
  180.          space := source_type.jvm_convert_to(destination_type);
  181.       end;
  182.  
  183.    compile_to_jvm_into(dest: TYPE): INTEGER is
  184.       do
  185.          compile_to_jvm;
  186.          Result := destination_type.jvm_convert_to(dest);
  187.       end;
  188.  
  189.    jvm_branch_if_false: INTEGER is
  190.       do
  191.          Result := expression.jvm_branch_if_false;
  192.       end;
  193.  
  194.    jvm_branch_if_true: INTEGER is
  195.       do
  196.          Result := expression.jvm_branch_if_true;
  197.       end;
  198.  
  199.    use_current: BOOLEAN is
  200.       do
  201.          Result := expression.use_current;
  202.       end;
  203.  
  204.    stupid_switch(r: ARRAY[RUN_CLASS]): BOOLEAN is
  205.       do
  206.          Result := expression.stupid_switch(r);
  207.       end;
  208.  
  209.    c_simple: BOOLEAN is
  210.       do
  211.          Result := expression.c_simple;
  212.       end;
  213.  
  214.    can_be_dropped: BOOLEAN is
  215.       do
  216.          Result := expression.can_be_dropped;
  217.       end;
  218.  
  219.    to_runnable(ct: TYPE): EXPRESSION is
  220.       do
  221.          Result := expression.to_runnable(ct);
  222.       end;
  223.  
  224.    start_position: POSITION is
  225.       do
  226.          Result := expression.start_position;
  227.       end;
  228.  
  229.    bracketed_pretty_print, pretty_print is
  230.       do
  231.          expression.pretty_print;
  232.       end;
  233.  
  234.    print_as_target is
  235.       do
  236.          expression.print_as_target;
  237.       end;
  238.  
  239.    short is
  240.       do
  241.          expression.short;
  242.       end;
  243.  
  244.    short_target is
  245.       do
  246.          expression.short_target;
  247.       end;
  248.  
  249.    precedence: INTEGER is
  250.       do
  251.          Result := expression.precedence;
  252.       end;
  253.  
  254.    jvm_assign is
  255.       do
  256.          expression.jvm_assign;
  257.       end;
  258.  
  259. feature {NONE}
  260.  
  261.    c_wrapper_opening is
  262.       do
  263.          conversion_handler.c_function_call(source_type,destination_type);
  264.       end;
  265.  
  266.    c_wrapper_closing is
  267.       do
  268.          cpp.put_character(')');
  269.       end;
  270.  
  271. end -- IMPLICIT_CAST
  272.